home *** CD-ROM | disk | FTP | other *** search
/ Programming Languages Suite / ProgLangD.iso / BORLAND TURBO / SCRPTEXM.PAK / CODECPP.DAT < prev    next >
Text File  |  1997-05-06  |  423b  |  18 lines

  1. CODECPP.DAT: C++ code library file.
  2.  
  3. MAIN FILE: CODELIB.SPP
  4.  
  5. NOTES: Enter library entries. The first line of each entry must be the
  6.   entry marker, immediately followed by a description. The code begins
  7.   on the line following the description, and extends until the next
  8.   marker or EOF.
  9.  
  10. <*>Example entry: GetTimeStamp routine
  11. PSTR GetTimeStamp( void ){
  12.     time_t t;
  13.     time( &t );
  14.       return ctime( &t );
  15. }
  16.  
  17.  
  18.